iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 22
0
Modern Web

挑戰!用30天做一個自己的履歷作品集網頁!系列 第 22

Day 22 | Keep Going 6 - 技能量表

  • 分享至 

  • xImage
  •  

https://ithelp.ithome.com.tw/upload/images/20201004/20130249kfDFJzRULj.png
雖然先前使用html 的 <progress id= "file" value="32" max="100"> 32% </progress> 成功製作出量表,雖然有現成的量表,但後來發現好像無法對他做CSS 調整,所以最後決定使用div 製作。

<div class="progressbar">
		<p>Adobe Illustrator</p>
    <div class="bar-bg">
        <div class="bar-color" style="width: 90%"></div>
    </div>
</div>

用一個div包住另一個div,外面的是量表的底,裡面是量表數值的部分。

.bar-bg{
    height: 15px;
    width: 200px;
    background-color: #e9e9e9;
    border-radius: 20px;
    overflow: hidden;
}
.bar-bg .bar-color{
    height: 100%;
    background-color: #E0BD5E;
}

製作出量表的公版之後,長度直接在style="width: 90%“進行調整。文字則是另外一個包住p標籤的div。

再將這些量表做對齊就好囉!

.progressbar{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    width: 30vw;
}
.skill{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

下一章 Keep Going 7 - 時間軸

※本文章所使用之圖片皆為本人作品,內容則為本人之經驗分享


上一篇
Day 21 | Keep Going 5 - 專長三角形
下一篇
Day 23 | Keep Going 7 - 時間軸
系列文
挑戰!用30天做一個自己的履歷作品集網頁!30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言